.address {
  display: grid;
  grid-template-columns: auto 250px 200px 450px auto;
  height: 230px;
  background-color: rgb(50, 50, 50);
}

.address-text {
  line-height: 2rem;
  color: white;
  padding: 20px;
}

#map {
  background-color: rgb(200, 200, 200);
  border: 1px solid #c59d5b;
  min-height: 200px;
  border-radius: 10px;
}



@media only screen and (max-width: 1025px) {
  .address {    
     grid-template-columns: 100%;
     height: auto;
     text-align: center;
  }
}
